I'm not sure. You are only the 2nd person to inquire about it.
What do you need it for and what would you be willing to pay for it?
It looks like Haas charges $1395 per machine for it :)
http://parts.haascnc.com/haasparts/en/USD/Performance-Upgrade/Control-Options/Mill-Control-Options/COORDINATE-ROTATION-AND-SCALING-OPTION/p/ROTATION%20AND%20SCALE
Can't your CAD system do it for you?
I was thinking it could be applied in the kinematics layer like the
GeoCorrection, but then I realized the DRO and BackPlotter would not
show the rotation. I would assume you would want the unrotated
coordinates in the DRO but rotated coordinates in the plot. Can you
explain in detail how you would expect it to work?
BTW the MeasureFiducials C# example has some code to create a
Geocorrection file given: theta rotation, scale, and xy offset. See
the code, Article, and Video below.
Regards
TK
private void WriteGeo()
{
string mapfile = MainPath +
"\\KMotion\\Data\\FiducialsMap.txt";
System.IO.StreamWriter file = new
System.IO.StreamWriter(mapfile);
file.WriteLine("2,2"); // rows, cols
file.WriteLine("1,1"); // gridx gridy
file.WriteLine("-0.5,-0.5"); // centerX Centery
WriteGrid(0, 0, ref file);
WriteGrid(0, 1, ref file);
WriteGrid(1, 0, ref file);
WriteGrid(1, 1, ref file);
file.Close();
MapFile.Text = String.Format("{0} Created", mapfile);
Host.SendMessageService(HostComm.ID_ReloadGeoCorrection);
Theta.Text = (theta * 180.0 / Math.PI).ToString("F4");
ScaleFactor.Text = scale.ToString("F4");
XOff.Text =
ConvertToUser(offsetx).ToString(UnitsFormat);
YOff.Text =
ConvertToUser(offsety).ToString(UnitsFormat);
}
private void WriteGrid(int row, int col, ref
System.IO.StreamWriter f)
{
double Centerx = 0.5;
double Centery = 0.5;
double x = col - Centerx;
double y = row - Centery;
f.WriteLine(String.Format("{0},{1},{2:n6},{3:n6},0",
row, col, TransformX(x, y), TransformY(x, y)));
}
private double TransformX(double x, double y)
{
return (scale * (x * Math.Cos(theta) - y *
Math.Sin(theta))) + offsetx;
}
private double TransformY(double x, double y)
{
return (scale * (x * Math.Sin(theta) + y *
Math.Cos(theta))) + offsety;
}
https://dynomotion.com/Help/KMotionCNC/FiducialAlignment.htm
https://youtu.be/a_p38zktIZI
Well after some reading, i don't see any easy way to
implement what i need, at least for my knowledge.
I guess the only way is to switch to Mach3 HMI, which has
this future.
Any way is there a time frame of when the G68 is going to
be implemented?
Regards.